Method: Integer#>

Defined in:
numeric.c

#>(other) ⇒ Boolean

Returns true if the value of self is greater than that of other:

1 > 0              # => true
1 > 1              # => false
1 > 2              # => false
1 > 0.5            # => true
1 > Rational(1, 2) # => true

Raises an exception if the comparison cannot be made.

Returns:

  • (Boolean)


4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
# File 'numeric.c', line 4806

VALUE
rb_int_gt(VALUE x, VALUE y)
{
    if (FIXNUM_P(x)) {
        return fix_gt(x, y);
    }
    else if (RB_BIGNUM_TYPE_P(x)) {
        return rb_big_gt(x, y);
    }
    return Qnil;
}